Auto merge of #1873 - alexcrichton:fix-transitive-activation, r=brson
authorbors <bors@rust-lang.org>
Mon, 3 Aug 2015 23:42:07 +0000 (23:42 +0000)
committerbors <bors@rust-lang.org>
Mon, 3 Aug 2015 23:42:07 +0000 (23:42 +0000)
commit1b902d4f841beec6d442d6527c98ef8961545067
treec49dc47db975a30ea8e2782cb46f90c895e8a94b
parent553b363bcfcf444c5bd4713e30382a6ffa2a52dd
parente2e1751a06b1ba79b651417343bb27ee04140d34
Auto merge of #1873 - alexcrichton:fix-transitive-activation, r=brson

When activating the feature `foo/bar` you're actually activating both the
feature `foo` and the `bar` feature of the relevant package. Cargo previously
forgot to activate the `foo` feature, and this commit fixes that up.

Closes #1871